release: v3.2.3 — fix program-points cap (per-function wasn't enough) - #109
Merged
Conversation
The v3.2.2 cap limited points to 20 PER FUNCTION, but scry-on-scry has ~800 functions, so self-analysis.html was still ~10 MB (deployed page confirmed). The per-function cap alone doesn't bound the page. scry-viz: render a cheap one-row summary for EVERY function + detailed per-point tables only for the first FUNCS_WITH_DETAIL_CAP (12) functions → page stays <1 MB regardless of function count. Page-size test rewritten to synthesize points across 500 functions (not just many points in one). Corrected an inaccurate cap note (per-point data is the library AnalysisResult, not guidance.json). Version 3.2.2 → 3.2.3 + Cargo.lock + CHANGELOG. 24 viz tests, clippy + fmt clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Post-deploy verification of v3.2.2 caught a real miss: the live
self-analysis.htmlwas still ~10 MB. The v3.2.2 cap was per-function (20 points each), but scry-on-scry has ~800 functions, so 800 × 20 rows still rendered.Fix (scry-viz)
FUNCS_WITH_DETAIL_CAP) → page stays well under 1 MB regardless of function count.AnalysisResult, notguidance.json(which carries advisories + trap verdicts).Bump 3.2.2 → 3.2.3 + CHANGELOG. 24 viz tests, clippy
-D warnings+ fmt clean. Tagging redeploys the Pages dashboard with the genuinely-small page.🤖 Generated with Claude Code